home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / hity wydania / Ubuntu 9.10 PL / karmelkowy-koliberek-desktop-9.10-i386-PL.iso / casper / filesystem.squashfs / var / lib / dpkg / info / time.preinst < prev    next >
Text File  |  2008-11-05  |  792b  |  38 lines

  1. #!/bin/sh
  2. #
  3. # This is the preinst script for the Debian GNU/Linux time package
  4. #
  5. # Written by Dirk Eddelbuettel <edd@debian.org>   
  6.  
  7. set -e
  8.  
  9.  
  10.  
  11. case "$1" in
  12.     upgrade)
  13.     # This is needed for time_1.7-4 as it calls update-menus only on
  14.     # remove or purge. As dhelp drops this file here which is outside the 
  15.     # package manager's scope, and hence not removed unless update-menus is 
  16.     # called, but this happens too late 
  17.     if [ -f /usr/doc/time/.dhelp ]
  18.     then
  19.         rm /usr/doc/time/.dhelp
  20.     fi
  21.     #
  22.     # There could also be an empty dir left, let's remove it 
  23.     #if [ -d /usr/doc/time ]
  24.     #then
  25.     #    rmdir /usr/doc/time 
  26.     #fi
  27.     ;;
  28.     remove|purge)
  29.     ;;
  30.     install|failed-upgrade|abort-install|abort-upgrade|disappear)
  31.     ;;
  32.     *)
  33.     echo "preinst called with unknown argument \`$1'" >&2
  34.     ;;
  35. esac
  36.  
  37. exit 0
  38.